home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinMessenger 1.xpl < prev    next >
Text File  |  2002-01-10  |  2KB  |  68 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="3"
  4. "UIPATH"="Internet\Instant Messaging\Windows Messenger\Servers"
  5. "NAME"="URL Settings"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.11"
  8. "TEXT 1"="Server URL/Port"
  9. "TEXT 2"="Socks 4 Server"
  10. "TEXT 3"="Socks 5 Server"
  11. "DESCRIPTION 1"="You can use this plug-in to change the options for Windows Messenger."
  12. "DESCRIPTION 2"="The default value for Server URL is "messenger.hotmail.com;64.4.13.56:1863" Some people use "messenger.hotmail.com;209.185.128.132:1863" as an alternative. As of Windows Messenger 4.0, Microsoft has set the default as messenger.hotmail.com;64.4.13.213:1863"
  13. "DESCRIPTION 3"="Windows Messenger may be obtained at http://messenger.msn.com/"
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
  19.  
  20.  
  21.  
  22.  
  23. sPath="HKCU\Software\Microsoft\MessengerService\"
  24. sV1="Server"
  25. sV2="SOCKS4Server"
  26. sV3="SOCKS5Server"
  27.  
  28. Sub Plugin_Initialize 
  29.  if RegPathExists(sPath) then
  30.     s=RegReadValue(sPath & sV1)
  31.     SetUIElement 1,s
  32.  
  33.     s=RegReadValue(sPath & sV2)
  34.     SetUIElement 2,s
  35.  
  36.     s=RegReadValue(sPath & sV3)
  37.     SetUIElement 3,s
  38.  
  39.  else
  40.     Disable
  41.  end if
  42. End Sub
  43.  
  44.  
  45. Sub Plugin_CheckData(ElementIndex)
  46. End Sub
  47.  
  48.  
  49.  
  50. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  51.  s=GetUIElement(1)
  52.  Call RegWriteValue(sPath & sV1,s,1)
  53.  
  54.  s=GetUIElement(2)
  55.  Call RegWriteValue(sPath & sV2,s,1)
  56.  
  57.  s=GetUIElement(3)
  58.  Call RegWriteValue(sPath & sV3,s,1)
  59.  
  60. End Sub
  61.  
  62.  
  63. Sub Plugin_Terminate 
  64. End Sub
  65.  
  66.  
  67.  
  68.